home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.parser;
-
- import org.w3c.dom.Node;
- import org.w3c.dom.Notation;
-
- class TXNotation$NotationImpl extends TXNotation implements Notation {
- TXNotation$NotationImpl(String var1, ExternalID var2) {
- super(var1, var2);
- }
-
- public Node getParentNode() {
- return null;
- }
-
- public Node cloneNode(boolean var1) {
- ((Child)this).checkFactory();
- TXNotation$NotationImpl var2 = (TXNotation$NotationImpl)super.factory.createNotation(super.name, super.externalID).getNotationImpl();
- ((Child)var2).setFactory(((Child)this).getFactory());
- return var2;
- }
- }
-